build/libutf8proc.*
build/Debug/utf8proc.*
- name: Test Consuming (Windows)
- if: ${{ matrix.os == 'windows-latest' }}
+ if: runner.os = 'Windows'
run: |
cmake --install build --prefix tmp/install --config Debug
cmake -S test/app -B test/app/build -DCMAKE_INSTALL_PREFIX=tmp/install
$Env:PATH = "$PWD\tmp\install\bin;$Env:PATH"
test/app/build/Debug/app.exe
- name: Test Consuming (Unix)
- if: ${{ matrix.os != 'windows-latest' }}
+ if: runner.os != 'Windows'
run: |
cmake --install build --prefix tmp/install
cmake -S test/app -B test/app/build -DCMAKE_INSTALL_PREFIX=tmp/install